home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Young Minds
/
Young Minds Interactive CD-ROM.ISO
/
nethack
/
nethack.sh
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Linux/UNIX/POSIX Shell Script
|
1988-09-06
|
219 b
|
16 lines
#!/bin/sh
# SCCS Id: @(#)nethack.sh 1.4 87/08/08
HACKDIR=/usr/games/lib/nethackdir
HACK=$HACKDIR/nethack
MAXNROFPLAYERS=4
cd $HACKDIR
case $1 in
-s*)
exec $HACK $@
;;
*)
exec $HACK $@ $MAXNROFPLAYERS
;;
esac